Skip to content

Commit 414d1ca

Browse files
committed
changes to pages, added resources, cleaned
1 parent ffc6f5b commit 414d1ca

File tree

30 files changed

+84
-29
lines changed

30 files changed

+84
-29
lines changed

data-platform/open-source-data-platforms/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Open Source Data Platforms continue to extend the Oracle Data Platform with Key
1111
- OCI OpenSearch
1212
- OCI NoSQL
1313

14+
1415
# License
1516

1617
Copyright (c) 2025 Oracle and/or its affiliates.

data-platform/open-source-data-platforms/oci-big-data-service/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Oracle Big Data Service is a fully managed, automated cloud service that provide
33
Easily create secure and scalable Hadoop-based data lakes that can quickly process large amounts of data.
44
BDS is based on Oracle [Hadoop Distribution](https://docs.oracle.com/en-us/iaas/Content/bigdata/overview.htm#overview-odh).
55

6-
Reviewed: 04.06.2024
6+
Reviewed: 11.11.2025
77

88
# Table of Contents
99

data-platform/open-source-data-platforms/oci-cache/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
OCI Cache with Redis is a comprehensive, managed in-memory caching solution built on the foundation of open source Redis.
33
This fully managed service accelerates data reads and writes, significantly enhancing application response times and database performance to provide an improved customer experience.
44

5-
Reviewed: 05.06.2024
5+
Reviewed: 11.11.2025
66

77
# Table of Contents
88

@@ -14,6 +14,7 @@ Reviewed: 05.06.2024
1414

1515
- [Leverage OCI-managed Redis and PostgreSQL for your e-commerce application](https://docs.oracle.com/en/solutions/oci-redis-postgresql/index.html#GUID-DD63C617-DEEE-4357-B203-A3CFDF1B34EC)
1616
- [Enable a Low Code Modular LLM App Engine using Oracle Integration and OCI Generative AI](https://docs.oracle.com/en/solutions/oci-generative-ai-integration/index.html#GUID-0C310162-34D9-4EB2-978D-FBAFB931E637)
17+
- [Upgrade OCI Cache with Redis to Valkey](https://medium.com/@devpiotrekk/upgrade-oci-cache-with-redis-to-valkey-d3c01deb8733)
1718

1819

1920
# Useful Links

data-platform/open-source-data-platforms/oci-cache/connect-via-nlb/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Connect OCI Cache from a local machine via a Network Load Balancer(NLB)
22

3-
Reviewed: 13.08.2024
3+
Reviewed: 11.11.2025
44

55
# When to use this asset?
66

data-platform/open-source-data-platforms/oci-data-flow/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# OCI Data Flow
22
Oracle Cloud Infrastructure (OCI) Data Flow is a fully managed Apache Spark service that performs processing tasks on extremely large datasets—without infrastructure to deploy or manage. Developers can also use Spark Streaming to perform cloud ETL on their continuously produced streaming data. This enables rapid application delivery because developers can focus on app development, not infrastructure management
33

4-
Reviewed: 05.06.2024
4+
Reviewed: 11.11.2025
55

66
# Table of Contents
77

@@ -15,6 +15,8 @@ Reviewed: 05.06.2024
1515
- [Machine Learning with OCI Data Flow](https://www.youtube.com/watch?v=A6uVbK7wQb4)
1616
- [Extracting data from Salesforce in near real-time using OCI Data Flow — Part 1](https://medium.com/@eloi-lopes29/extracting-data-from-salesforce-in-near-real-time-using-oci-data-flow-part-1-f096886b9fcd)
1717
- [OCI Audit Logs to Object Storage with Data Flow](https://blogs.oracle.com/cloud-infrastructure/post/behind-the-scenes-shrinking-log-analysis)
18+
- [Predict energy consumption with OCI Data Flow and Spark MLlib](https://medium.com/data-engineer-things/predict-energy-consumption-with-oci-data-flow-and-spark-mllib-74626c4db56a)
19+
- [Apache Spark with OCI Data Flow and Oracle Autonomous Database](https://medium.com/@sylwekdec/apache-spark-with-oci-data-flow-and-oracle-autonomous-database-bd96055445ee)
1820

1921
# Useful Links
2022

data-platform/open-source-data-platforms/oci-data-flow/code-examples/DeltaLake_Optimize/readme.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Delta Lake Optimization
22

3+
Reviewed: 11.11.2025
4+
35
Oracle Cloud Infrastructure (OCI) Data Flow is a fully managed Apache Spark service that performs processing tasks on extremely large datasets—without infrastructure to deploy or manage.
46
Developers can also use Spark Streaming to perform cloud ETL on their continuously produced streaming data.
57
However Spark structured streaming application can produce thousants of small files (according to microbatching and number of executors), which leads to performance degradadion.

data-platform/open-source-data-platforms/oci-data-flow/code-examples/Streaming_from_ObjectStorage/readme.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# OCI Data Flow Reading files from Object Storage in Streaming mode
22

3+
Reviewed: 11.11.2025
4+
35
Sometimes you would like to continously monitor a Object Storage (S3 compatible) location and incrementally process new incoming data.</br>
46
With Spark we can create a StreamingQuery using ObjectStorage source and process data from files in streaming mode .... without streaming platform.
57
All we need is to use spark.readStream with a location - object storage or S3 compatible.

data-platform/open-source-data-platforms/oci-data-flow/code-examples/build-and-deploy-app-from-oci-ds/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Build and Deploy an OCI Data Flow application using OCI Data Science
22

3-
Reviewed: 04.06.2024
3+
Reviewed: 11.11.2025
44

55
# When to use this asset?
66

data-platform/open-source-data-platforms/oci-data-flow/code-examples/connect-to-AWS-S3/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# OCI Data Flow Connection to AWS S3
22

3-
Reviewed: 10.07.2024
3+
Reviewed: 11.11.2025
44

55
# When to use this asset?
66

data-platform/open-source-data-platforms/oci-data-flow/code-examples/connect-to-Snowflake/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# OCI Data Flow Connection to Snowflake
22

3-
Reviewed: 10.07.2024
3+
Reviewed: 11.11.2025
44

55
# When to use this asset?
66

0 commit comments

Comments
 (0)