DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
| Data Source | INSERT | UPSERT | UPSERT USING LOAD | LOAD |
|---|---|---|---|---|
| Single row at a time with the VALUES clause | <TBD>. Slowest approach. | <TBD> | <TBD> | No |
| List of rows with the VALUES clause. | <TBD>. Speed comparable to rowset INSERT. List Single row version of CheckAndPut called. | <TBD>. Speed comparable to rowset UPSERT. List version of Put called. | <TBD>. Speed comparable to rowset UPSERT USING LOAD. List version of Put called. | No |
| List of rows with ODBC/JDBC Rowset | <TBD> | <TBD> | ~ 2.5 GB/hr | No |
| Native HBase tables | <TBD>. Speed expected to be slower than a Trafodion table as the source for INSERT since the compiler has no stats and data will need to be encoded. | <TBD>. Speed expected to be slower than a Trafodion table as the source for UPSERT since the compiler has no stats and data will need to be encoded. | <TBD>. Speed expected to be slower than a Trafodion table as the source for UPSERT USING LOAD since the compiler has no stats and data will need to be encoded. | <TBD>. Speed expected to be slower than a Trafodion table as the source for LOAD since the compiler has no stats and data will need to be encoded. |
| Trafodion tables | <TBD>. Speed expected to be slower than a Hive table as the source for INSERT since a Trafodion scan is slower than a Hive scan. | <TBD>. Speed expected to be slower than a Hive table as the source for UPSERT since a Trafodion scan is slower than a Hive scan. | <TBD>. Speed expected to be slower than a Hive table as the source for UPSERT USING LOAD since a Trafodion scan is slower than a Hive scan. | <TBD>. Speed expected to be slower than a Hive table as the source for LOAD since a Trafodion scan is slower than a Hive scan. |
| Hive tables | <TBD>. Fastest source for INSERT. | <TBD>. Fastest source for UPSERT. | TBD>. Fastest source for UPSERT USING LOAD. | Fastest, ~100 GB/hr. |
| UDF connected to other data sources. | Speed depends on the data source and UDF. Expected to be slower than a Hive table as the source for INSERT | Speed depends on the data source and UDF. | Speed depends on the data source and UDF. | Speed depends on the data source and UDF. |
...