
meroxa
List of commands for meroxa:
-
meroxa:warp:1b3f9 Add an Elasticsearch resource to the Meroxa Platform$ meroxa resources create ${resource_name} --type elasticsearch --url "https://${es_username}:${es_password}@${es_url}:${es_port}" --metadata '{"index.prefix": "${es_index}","incrementing.field.name": "${es_incrementing_field}"}'try on your machineexplain this command
-
meroxa:warp:37569 Add a Snowflake resource to the Meroxa Platform$ meroxa resource create ${resource_name} --type snowflakedb --url "snowflake://${snowflake_url}/meroxa_db/stream_data" --username meroxa_user --password ${snowflake_private_key}try on your machineexplain this command
-
meroxa:warp:47c87 Add a Google BigQuery resource to the Meroxa Platform$ meroxa resources create ${resource_name} --type bigquery --url "bigquery://${gcp_project_id}/${gcp_dataset_name}" --client-key "$(cat ${gcp_service_account_json_file})"try on your machineexplain this command
-
meroxa:warp:8e4c3 Add a Microsoft SQL Server resource to the Meroxa Platform$ meroxa resources create ${resource_name} --type sqlserver --url "sqlserver://${mssql_username}:${mssql_password}@${mssql_url}:${mssql_port}/${mssql_database_name}"try on your machineexplain this command
-
meroxa:warp:91c6b Add a MySQL resource to the Meroxa Platform$ meroxa resources create ${resource_name} --type mysql -u "mysql://${mysql_username}:${mysql_password}@${mysql_url}:${mysql_port}/${mysql_database_name}"try on your machineexplain this command
-
meroxa:warp:9e016 Add a Postgres resource with logical replication to the Meroxa Platform$ meroxa resources create ${resource_name} --type postgres --url "postgres://${pg_username}:${pg_password}@${pg_url}:${pg_port}/${pg_database_name}" --metadata '{"logical_replication":"true"}'try on your machineexplain this command
-
meroxa:warp:afc58 Add a MongoDB resource to the Meroxa Platform$ meroxa resources create ${resource_name} --type mongodb -u "mongodb://${mongodb_username}:${mongodb_password}@${mongodb_url}:${mongodb_port}"try on your machineexplain this command
-
meroxa:warp:b9cab Add an Amazon Redshift resource to the Meroxa Platform$ meroxa resources create ${resource_name} --type redshift --url "redshift://${redshift_username}:${redshift_password}@${redshift_url}:${redshift_port}/${redshift_db_name}"try on your machineexplain this command
-
meroxa:warp:bed56 Add a Postgres resource without logical replication to the Meroxa Platform$ meroxa resources create ${resource_name} --type postgres --url "postgres://${pg_username}:${pg_password}@${pg_url}:${pg_port}/${pg_database_name}"try on your machineexplain this command