rabbit-slide-kou-rubykaigi-2023 2023.5.13.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.rabbit +2 -0
- data/README.rd +52 -0
- data/Rakefile +17 -0
- data/config.yaml +26 -0
- data/images/ADBCFlow2.svg +989 -0
- data/images/apache-arrow-commits-kou-with-mark.png +0 -0
- data/images/clear-code-rubykaigi-2023-silver-sponsor.png +0 -0
- data/images/column-oriented.svg +650 -0
- data/pdf/rubykaigi-2023-ruby-adbc.pdf +0 -0
- data/ruby-adbc.rab +512 -0
- metadata +87 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: e51633d3b0ead59f2150991e0399791ace0a50a446429b837804a08fe51bea60
|
4
|
+
data.tar.gz: 6a8ccf527ab9ff611bb5a0a19a5f8f12229bf4b248907aaeeaf1274fdd563796
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 586ab39cb0ae92608ad7251588e53a2f1e07e30ceefc4d554bc52ac4e6f476b619e72df2221b5f46cbbd8e40d2ca04738082aaea62329fdbd5d2e314f7de4035
|
7
|
+
data.tar.gz: 0116c0804c445d14f5fbf3937733869ba6cb6e4710c7a43cc92167404ab7b65010bd29a0ef5ade04f46fdce37a9cc20fc9dd296a300f8710e5dc01d3b5d16a2c
|
data/.rabbit
ADDED
data/README.rd
ADDED
@@ -0,0 +1,52 @@
|
|
1
|
+
= Ruby + ADBC - A single API between Ruby and DBs
|
2
|
+
|
3
|
+
ADBC is Apache Arrow Database Connectivity. It provides a API that can connect to different databases by wrapping database specific APIs.
|
4
|
+
|
5
|
+
This is not a new approach. There are existing APIs such as Active Record, Sequel and ODBC. The difference between the existing APIs and ADBC is the focus on large data and performance.
|
6
|
+
|
7
|
+
ADBC is an important part to use Ruby for data processing. We can extract large data from many databases (not only RDBMSs but also data ware houses and so on) and load large data into many databases with ADBC. To use Ruby for data processing, we need data. ADBC helps it.
|
8
|
+
|
9
|
+
== License
|
10
|
+
|
11
|
+
=== Slide
|
12
|
+
|
13
|
+
CC BY-SA 4.0
|
14
|
+
|
15
|
+
Use the followings for notation of the author:
|
16
|
+
|
17
|
+
* Sutou Kouhei
|
18
|
+
|
19
|
+
==== ClearCode Inc. logo
|
20
|
+
|
21
|
+
CC BY-SA 4.0
|
22
|
+
|
23
|
+
Author: ClearCode Inc.
|
24
|
+
|
25
|
+
It is used in page header and some pages in the slide.
|
26
|
+
|
27
|
+
==== ADBC related images
|
28
|
+
|
29
|
+
Apache-2.0
|
30
|
+
|
31
|
+
Author: The Apache Software Foundation
|
32
|
+
|
33
|
+
== For author
|
34
|
+
|
35
|
+
=== Show
|
36
|
+
|
37
|
+
rake
|
38
|
+
|
39
|
+
=== Publish
|
40
|
+
|
41
|
+
rake publish
|
42
|
+
|
43
|
+
== For viewers
|
44
|
+
|
45
|
+
=== Install
|
46
|
+
|
47
|
+
gem install rabbit-slide-kou-rubykaigi-2023
|
48
|
+
|
49
|
+
=== Show
|
50
|
+
|
51
|
+
rabbit rabbit-slide-kou-rubykaigi-2023.gem
|
52
|
+
|
data/Rakefile
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
require "rabbit/task/slide"
|
2
|
+
|
3
|
+
# Edit ./config.yaml to customize meta data
|
4
|
+
|
5
|
+
spec = nil
|
6
|
+
Rabbit::Task::Slide.new do |task|
|
7
|
+
spec = task.spec
|
8
|
+
# spec.files += Dir.glob("doc/**/*.*")
|
9
|
+
# spec.files -= Dir.glob("private/**/*.*")
|
10
|
+
spec.add_runtime_dependency("rabbit-theme-clear-code")
|
11
|
+
end
|
12
|
+
|
13
|
+
desc "Tag #{spec.version}"
|
14
|
+
task :tag do
|
15
|
+
sh("git", "tag", "-a", spec.version.to_s, "-m", "Publish #{spec.version}")
|
16
|
+
sh("git", "push", "--tags")
|
17
|
+
end
|
data/config.yaml
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
---
|
2
|
+
id: rubykaigi-2023
|
3
|
+
base_name: ruby-adbc
|
4
|
+
tags:
|
5
|
+
- rabbit
|
6
|
+
- ruby
|
7
|
+
- arrow
|
8
|
+
- adbc
|
9
|
+
presentation_date: 2023-05-13
|
10
|
+
version: 2023.5.13.0
|
11
|
+
licenses:
|
12
|
+
- CC-BY-SA-4.0
|
13
|
+
slideshare_id:
|
14
|
+
speaker_deck_id:
|
15
|
+
vimeo_id:
|
16
|
+
youtube_id:
|
17
|
+
width: 1920
|
18
|
+
height: 1080
|
19
|
+
source_code_uri: "https://gitlab.com/ktou/rabbit-slide-kou-rubykaigi-2023"
|
20
|
+
author:
|
21
|
+
markup_language: :rd
|
22
|
+
name: Sutou Kouhei
|
23
|
+
email: kou@clear-code.com
|
24
|
+
rubygems_user: kou
|
25
|
+
slideshare_user: kou
|
26
|
+
speaker_deck_user:
|