40
40
@click .option ('-o' , '--output' , type = str ,
41
41
help = 'Either Google PubSub topic path e.g. projects/your-project/topics/crypto_ethereum; '
42
42
'or Postgres connection url e.g. postgresql+pg8000://postgres:admin@127.0.0.1:5432/ethereum. '
43
- 'or kafka, in case of kafka, specify connection_url '
43
+ 'or kafka, output name and connection ip:port e.g. kafka/127.0.0.1:9092 '
44
44
'If not specified will print to console' )
45
45
@click .option ('-s' , '--start-block' , default = None , show_default = True , type = int , help = 'Start block' )
46
46
@click .option ('-e' , '--entity-types' , default = ',' .join (EntityType .ALL_FOR_INFURA ), show_default = True , type = str ,
51
51
@click .option ('-w' , '--max-workers' , default = 5 , show_default = True , type = int , help = 'The number of workers' )
52
52
@click .option ('--log-file' , default = None , show_default = True , type = str , help = 'Log file' )
53
53
@click .option ('--pid-file' , default = None , show_default = True , type = str , help = 'pid file' )
54
- @click .option ('--connection-url' , default = None , show_default = True , type = str , help = 'Connection url for file, required for kafka' )
55
54
def stream (last_synced_block_file , lag , provider_uri , output , start_block , entity_types ,
56
- period_seconds = 10 , batch_size = 2 , block_batch_size = 10 , max_workers = 5 , log_file = None , pid_file = None ,
57
- connection_url = None ):
55
+ period_seconds = 10 , batch_size = 2 , block_batch_size = 10 , max_workers = 5 , log_file = None , pid_file = None ):
58
56
"""Streams all data types to console or Google Pub/Sub."""
59
57
configure_logging (log_file )
60
58
configure_signals ()
@@ -71,7 +69,7 @@ def stream(last_synced_block_file, lag, provider_uri, output, start_block, entit
71
69
72
70
streamer_adapter = EthStreamerAdapter (
73
71
batch_web3_provider = ThreadLocalProxy (lambda : get_provider_from_uri (provider_uri , batch = True )),
74
- item_exporter = create_item_exporter (output , connection_url ),
72
+ item_exporter = create_item_exporter (output ),
75
73
batch_size = batch_size ,
76
74
max_workers = max_workers ,
77
75
entity_types = entity_types
0 commit comments