-
Updated
Aug 6, 2022
big-data
Here are 3,084 public repositories matching this topic...
-
Updated
Aug 10, 2022 - C++
-
Updated
Apr 3, 2022 - Python
-
Updated
Aug 9, 2022 - JavaScript
-
Updated
Jan 9, 2021 - Scala
-
Updated
Jul 29, 2022 - Scala
-
Updated
Jul 4, 2022
Problem:
_catboost.pyx in _catboost._set_features_order_data_pd_data_frame()
_catboost.pyx in _catboost.get_cat_factor_bytes_representation()
CatBoostError: Invalid type for cat_feature[non-default value idx=1,feature_idx=336]=2.0 : cat_features must be integer or string, real number values and NaN values should be converted to string.
Could you also print a feature name, not o
-
Updated
Aug 10, 2022 - Jupyter Notebook
We can just disable the pushdown on json column in MongoDB connector. TestMongoTypeMapping needs a new test method for json type when fixing this issue.
CREATE TABLE test (c1 json);
INSERT INTO test VALUES (json '{"id":0,"name":"user_0"}');
SELECT * FROM test WHERE c1 = json '{"id":0,"name":"user_0"}';
java.lang.UnsupportedOperationException
at io.trino.spi.predicate.ValueSet.What would you like to happen?
Currently transforms that return a TimestampedValue need to be typed as plain "TimestampedValue" rather than generic "TimestampedValue[T]" so all underlying information about what type is being wrapped is lost.
Issue Priority
Priority: 3
Issue Component
Component: sdk-py-core
-
Updated
Aug 9, 2022 - Go
-
Updated
Aug 10, 2022 - Erlang
-
Updated
Aug 9, 2022 - JavaScript
Feature request
Overview
Currently, the MERGE command returns an empty result. It would be more useful if it returned
- number of affected rows (Long)
- number of updated rows (Long)
- number of deleted rows (Long)
- number of inserted rows (Long)
Motivation
These are obvious metrics that users would expect from this operation.
Further details
Implementation
-
Updated
Jul 17, 2022 - Python
-
Updated
Aug 10, 2022 - Java
... to make it easier to read Vespa documentation on an e-reader / offline
Vespa documentation is generated using Jekyll from .md and .html files, look into options for generating the artifact as part of site generation (there might be plugins we can use here)
-
Updated
Jun 14, 2022 - JavaScript
Is your feature request related to a problem? Please describe.
When creating a SQLite online store your only option is to create it on the filesystem. As every access needs to hit the filesystem then this slows down the online store.
Describe the solution you'd like
I'd like an option :memory: to use an in memory SQLite store instead. Eg in feature_store.yaml:
onlineImprove this page
Add a description, image, and links to the big-data topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the big-data topic, visit your repo's landing page and select "manage topics."

Is your feature request related to a problem? Please describe.
Many static type checkers have issues finding Cython's stubs.
Here is from running mypy on my current project:
The same issue can be seen when using
import Cython as cython: