DataOps
DataOps is an automated, process-oriented methodology, used by analytic and data teams, to improve the quality and reduce the cycle time of data analytics. While DataOps began as a set of best practices, it has now matured to become a new and independent approach to data analytics. DataOps applies to the entire data lifecycle from data preparation to reporting, and recognizes the interconnected nature of the data analytics team and information technology operations.
Here are 99 public repositories matching this topic...
Describe the issue
Currently we run the Linter CI for golang repos using the golang-ci-linter binary. But according to the documentation it is faster and better to use the github action.
https://golangci-lint.run/usage/install/
The UX of all the error highlighting is also better.
What if we do not do this?
Finding linter errors is troublesome as users have to parse through the cons
-
Updated
Apr 8, 2022 - Shell
The default RubrixLogHTTPMiddleware record mapper for token classification expect a structured including a text field for inputs. This could make prediction model inputs a bit cumbersome. Default mapper could accepts also flat strings as inputs:
def token_classification_mapper(inputs, outputs):
iSummary
There is a typo in the output here: https://github.com/whylabs/whylogs/blob/mainline/src/whylogs/cli/demo_cli.py#L113
Also we can update this to better align with our examples and suggested use, e.g. we can remove prompting for 'project' and 'pipeline' since these aren't required, and streamline the script to simplify the demo experience.
-
Updated
Apr 11, 2022 - Scala
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"Support copy into queries
-
Updated
Apr 14, 2022 - Java
-
Updated
Apr 15, 2022 - Python
-
Updated
Mar 22, 2022
-
Updated
Apr 16, 2022 - Shell
-
Updated
Apr 11, 2022 - Java
Currently, both Kafka and Influx sink logs only the data(Row) that is being sent.
Add support for logging column names as well along with data points similar to the implementation in log sink.
This will enable users to correlate the data points with column names.
Zap configurations should be pushed to grpc middleware here: cmd/setup.go#L47
-
Updated
Apr 8, 2022 - Shell
-
Updated
Apr 16, 2022 - Python
-
Updated
Apr 11, 2022 - Go
-
Updated
Apr 14, 2022 - Python
In golang client, consumers get dynamic message instance after parsing. Add an example in the docs on how to use dynamic message instance to get values of different types in consumer code.
List of protobuf types to cover
- timestamp
- duration
- bytes
- message type
- struct
- map
-
Updated
Apr 14, 2022 - Go
-
Updated
Apr 1, 2022 - Python
-
Updated
Aug 2, 2020 - Smarty
-
Updated
Feb 18, 2022 - Go
-
Updated
Jan 31, 2022
Siren creates alertmanager config and sycns with alertmanger. The alert manager config can change for the same subscriptions if their order changes. We should follow some sorting conventions and stick to those conventions to create an alert manager config.
-
Updated
Feb 1, 2022 - Python
We are using the protobuf-git configuration as described at https://cloudhut.dev/docs/features/protobuf#git-repository
In our repository the proto-files live within a
protodirectory, which seems to be very common, and contains 5 levels of nested folders.Currently KOWL searches only the first 5 levels of the checkout for
.protofiles, so our last level is not considered.Please