etl
Here are 1,959 public repositories matching this topic...
Under the hood, Benthos csv input uses the standard encoding/csv packages's csv.Reader struct.
The current implementation of csv input doesn't allow setting the LazyQuotes field.
We have a use case where we need to set the LazyQuotes field in order to make things work correctly.
-
Updated
Mar 22, 2022 - Python
I am trying to implement retry logic for Aws Aurora Mysql.
In Linq2db there is retyrpolicy already implemented except there is no way to pass retrypolicy to DataContext.
So I have extended the DataContext as follows.
public class RetryingDataContext : DataContext
{
protected IRetryPolicy _retryPolicy;
public RetryingDataContext(IDataProvider dataProvider, string c
-
Updated
Oct 27, 2021 - Python
-
Updated
Dec 29, 2021 - Ruby
The functions in this file should be factored out to a separate utility lib as they are reused in bitcoin-etl https://github.com/blockchain-etl/ethereum-etl/blob/develop/ethereumetl/misc_utils.py
-
Updated
Dec 28, 2021 - Python
-
Updated
Mar 20, 2022
-
Updated
Feb 22, 2022 - Go
-
Updated
Mar 16, 2022 - Makefile
-
Updated
Mar 12, 2022 - Go
-
Updated
Mar 19, 2022 - JavaScript
-
Updated
Feb 11, 2022 - Go
if they are not class methods then the method would be invoked for every test and a session would be created for each of those tests.
`class PySparkTest(unittest.TestCase):
@classmethod
def suppress_py4j_logging(cls):
logger = logging.getLogger('py4j')
logger.setLevel(logging.WARN)
@classmethod
def create_testing_pyspark_session(cls):
return Sp
-
Updated
Mar 8, 2022 - Java
Sending a rest call to delete a job specification throws 404 where as grpc call works fine. Steps to reproduce
curl -X DELETE "http://localhost:9100/v1/project/my-project/namespace/kush/helloworld" -H "accept: application/json"-
Updated
Nov 15, 2021 - Go
-
Updated
Jan 12, 2022 - C
-
Updated
Mar 22, 2022 - Go
-
Updated
Mar 15, 2022 - Java
-
Updated
Nov 14, 2021 - Python
-
Updated
May 23, 2019 - Python
-
Updated
Mar 15, 2022 - C#
-
Updated
Mar 16, 2022 - TypeScript
Right now, these aren't caught until we try to gob-encode. Consider failing faster in type-checking to avoid too much confusion/loss when it works with local execution.
If i have an input yaml connecting to jdbc source like:
inputs:
somedb:
jdbc:
connectionUrl: jdbc:jtds:redact
user: someuser
password: somepass
the log has
2020-12-08 17:01:28,076 [main] INFO com.yotpo.metorikku.Job - these are the config inputs: Some(Map(.....somepass
ideally this should be printed as ****** in the log
Improve this page
Add a description, image, and links to the etl topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the etl topic, visit your repo's landing page and select "manage topics."
Tell us about the problem you're trying to solve
If a source incorrectly declares its schema (e.g; it says the "ID" column is a number when it's really a string) then we only find out about that when the destination fails upon encountering one such record. This has two problems: