"""Configuration of upload to DynamoDB.""" import os from dim_refresh_etl.flows.dynamo_sync.consts import TableEntityTypes model_type_settings = { TableEntityTypes.analytics_metadata: { 'processes_number': os.environ.get('ANALYTICS_METADATA_PROCESSES', 2), 'threads_number': os.environ.get('ANALYTICS_METADATA_THREADS', 8) }, }