Kopia OCI Backup S3 Setup

Kopia OCI Backup: S3 Setup Guide

Kopia can use OCI Object Storage as an S3-compatible backend for encrypted, deduplicated and compressed backups. The practical goal of this guide is simple: create a Kopia repository on OCI, validate it, run the first snapshot, and know how to reconnect or restore data later. Quick setup Step What you need 1. Create an OCI bucket Bucket name, namespace and region. 2. Enable S3-compatible access Customer access key and secret key for the OCI user. 3. Create the Kopia repository kopia repository create s3 with the OCI S3 endpoint. 4. Validate the repository kopia repository validate-provider. 5. Create snapshots kopia snapshot create <path>. Why Kopia and OCI Object Storage OCI Object Storage is useful for a Kopia backup repository because it provides: ...

February 6, 2024 · 5 min · Enrico Pesce
Scalable and Serverless Data Ingestion with OCI Functions

Scalable and Serverless Data Ingestion with OCI Functions

In this article, we will leverage OCI’s capabilities to the fullest, embracing the following principles: Scalability Resilience Flexibility Security Automation The “loadfileintoadw” project is located in the same GitHub repository used so far to discuss OCI Function fn-examples . This example will help you understand how to integrate multiple OCI services and make the most of the cloud provider. We will simulate a series of weather stations that will write a CSV file with sampling data (temperature, humidity, etc.). The sensor will automatically upload the file to an Object Storage bucket. ...

October 20, 2023 · 1 min · Enrico Pesce
Trigger a function by Object Storage

Trigger a function by Object Storage

The OCI Function service allows you to run code on infrastructure that you don’t have to manage. In this link I presented a basic example of an OCI function developed in Python. A very interesting feature is that functions can be automatically invoked by other services through an event, so we can also execute code in response to an action in the OCI cloud, or use a function as a link between multiple cloud services that can form a complex workload. ...