Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
swh-dataset
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Antoine Lambert
swh-dataset
Commits
4636d1c1
Commit
4636d1c1
authored
3 years ago
by
Antoine Pietri
Browse files
Options
Downloads
Patches
Plain Diff
Add two ORC tools (orc-merge, orc-print-contents)
parent
ab6191bc
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
bin/orc-merge
+39
-0
39 additions, 0 deletions
bin/orc-merge
bin/orc-print-contents
+22
-0
22 additions, 0 deletions
bin/orc-print-contents
with
61 additions
and
0 deletions
bin/orc-merge
0 → 100755
+
39
−
0
View file @
4636d1c1
#!/usr/bin/env python3
# Copyright (C) 2021 The Software Heritage developers
# See the AUTHORS file at the top-level directory of this distribution
# License: GNU General Public License version 3, or any later version
# See top-level LICENSE file for more information
"""
Merge multiple ORC files into a single one.
"""
import
argparse
import
pyorc
def
main
():
parser
=
argparse
.
ArgumentParser
(
description
=
__doc__
)
parser
.
add_argument
(
"
-o
"
,
"
--output
"
,
type
=
argparse
.
FileType
(
mode
=
"
wb
"
),
required
=
True
)
parser
.
add_argument
(
"
files
"
,
type
=
argparse
.
FileType
(
mode
=
"
rb
"
),
nargs
=
"
+
"
)
args
=
parser
.
parse_args
()
schema
=
str
(
pyorc
.
Reader
(
args
.
files
[
0
]).
schema
)
with
pyorc
.
Writer
(
args
.
output
,
schema
)
as
writer
:
for
i
,
f
in
enumerate
(
args
.
files
):
reader
=
pyorc
.
Reader
(
f
)
if
str
(
reader
.
schema
)
!=
schema
:
raise
RuntimeError
(
"
Inconsistent ORC schemas.
\n
"
"
\t
First file schema: {}
\n
"
"
\t
File #{} schema: {}
"
.
format
(
schema
,
i
,
str
(
reader
.
schema
))
)
for
line
in
reader
:
writer
.
write
(
line
)
if
__name__
==
"
__main__
"
:
main
()
This diff is collapsed.
Click to expand it.
bin/orc-print-contents
0 → 100755
+
22
−
0
View file @
4636d1c1
#!/usr/bin/env python3
# Copyright (C) 2021 The Software Heritage developers
# See the AUTHORS file at the top-level directory of this distribution
# License: GNU General Public License version 3, or any later version
# See top-level LICENSE file for more information
"""
Print the contents of an ORC file.
"""
import
argparse
import
pyorc
if
__name__
==
"
__main__
"
:
parser
=
argparse
.
ArgumentParser
(
description
=
__doc__
)
parser
.
add_argument
(
"
files
"
,
type
=
argparse
.
FileType
(
mode
=
"
rb
"
),
nargs
=
"
+
"
)
args
=
parser
.
parse_args
()
for
orc_file
in
args
.
files
:
reader
=
pyorc
.
Reader
(
orc_file
)
for
row
in
reader
:
print
(
row
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment