Merge pull request #42 from FlipsideCrypto/edit-node-limits

change limits
This commit is contained in:
Austin 2024-09-03 15:07:34 -04:00 committed by GitHub
commit 161a041bf8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 15 additions and 15 deletions

View File

@ -4,9 +4,9 @@
func = 'streamline.udf_bulk_rest_api_v2',
target = "{{this.schema}}.{{this.identifier}}",
params ={ "external_table" :"testnet_blocks",
"sql_limit" :"20000",
"producer_batch_size" :"5000",
"worker_batch_size" :"2000",
"sql_limit" :"12000",
"producer_batch_size" :"12000",
"worker_batch_size" :"800",
"sql_source" :"{{this.identifier}}" }
),
tags = ['streamline_testnet_realtime']

View File

@ -4,9 +4,9 @@
func = 'streamline.udf_bulk_rest_api_v2',
target = "{{this.schema}}.{{this.identifier}}",
params ={ "external_table" :"testnet_confirm_blocks",
"sql_limit" :"20000",
"producer_batch_size" :"5000",
"worker_batch_size" :"2000",
"sql_limit" :"12000",
"producer_batch_size" :"12000",
"worker_batch_size" :"800",
"sql_source" :"{{this.identifier}}" }
),
tags = ['streamline_testnet_realtime']

View File

@ -4,9 +4,9 @@
func = 'streamline.udf_bulk_rest_api_v2',
target = "{{this.schema}}.{{this.identifier}}",
params ={ "external_table" :"testnet_receipts",
"sql_limit" :"20000",
"producer_batch_size" :"5000",
"worker_batch_size" :"2000",
"sql_limit" :"12000",
"producer_batch_size" :"12000",
"worker_batch_size" :"800",
"sql_source" :"{{this.identifier}}",
"exploded_key": tojson(["result"]) }
),

View File

@ -4,9 +4,9 @@
func = 'streamline.udf_bulk_rest_api_v2',
target = "{{this.schema}}.{{this.identifier}}",
params ={ "external_table" :"testnet_traces",
"sql_limit" :"20000",
"producer_batch_size" :"5000",
"worker_batch_size" :"2000",
"sql_limit" :"12000",
"producer_batch_size" :"12000",
"worker_batch_size" :"800",
"sql_source" :"{{this.identifier}}",
"exploded_key": tojson(["result"]) }
),

View File

@ -4,9 +4,9 @@
func = 'streamline.udf_bulk_rest_api_v2',
target = "{{this.schema}}.{{this.identifier}}",
params ={ "external_table" :"testnet_transactions",
"sql_limit" :"20000",
"producer_batch_size" :"5000",
"worker_batch_size" :"2000",
"sql_limit" :"12000",
"producer_batch_size" :"12000",
"worker_batch_size" :"800",
"sql_source" :"{{this.identifier}}",
"exploded_key": tojson(["result.transactions"]) }
),