Traject macros are a way of providing re-usable index mapping rules. Before we discuss how they work, we need to remind ourselves of the basic/direct Traject to_field
indexing method.
Here's the simplest possible direct Traject mapping logic, duplicating the effects of the literal
macro:
to_field("title") do |record, accumulator, context|
accumulator << "FIXED LITERAL"
end
That do
is just ruby block
syntax, whereby we can pass a block of ruby code as an argument to to a ruby method. We pass a block taking three arguments, labeled record
, accumulator
, and context
, to the to_field
method. The third 'context' object is optional, you can define it in your block or not, depending on if you want to use it.
The block is then stored by the Traject::Indexer, and called for each record indexed, with three arguments provided.
The record that gets passed to your block is a MARC::Record object (or, theoretically, any object that gets returned by a traject Reader). Your logic will usually examine the record to calculate the desired output.
The accumulator argument is an array. At the end of your custom code, the accumulator
array should hold the output you want to send off, to the field specified in the to_field
.
The accumulator is a reference to a ruby array, and you need to modify that array,
manipulating it in place with Array methods that mutate the array, like concat
, <<
,
map!
or even replace
.
You can't simply assign the accumulator variable to a different array, that won't work, you need to modify the array in-place.
# Won't work, assigning variable
to_field('foo') do |rec, acc|
acc = ["some constant"] } # WRONG!
end
# Won't work, assigning variable
to_field('foo') do |rec, acc|
acc << 'bill'
acc << 'dueber'
acc = acc.map{|str| str.upcase}
end # WRONG! WRONG! WRONG! WRONG! WRONG!
# Instead, do, modify array in place
to_field('foo') {|rec, acc| acc << "some constant" }
to_field('foo') do |rec, acc|
acc << 'bill'
acc << 'dueber'
acc = acc.map!{|str| str.upcase} #notice using "map!" not just "map"
end
The third optional context argument
The third optional argument is a Traject::Indexer::Context (rdoc) object. Most of the time you don't need it, but you can use it for some sophisticated functionality, for example using these Context methods:
context.clipboard
A hash into which you can stuff values that you want to pass from one indexing step to another. For example, if you go through a bunch of work to query a database and get a result you'll need more than once, stick the results somewhere in the clipboard. This clipboard is record-specific, and won't persist between records.context.position
The position of the record in the input file (e.g., was it the first record, seoncd, etc.). Useful for error reportingcontext.output_hash
A hash mapping the field names (generally defined into_field
calls) to an array of values to be sent to the writer associated with that field. This allows you to modify what goes to the writer without going through ato_field
call -- you can just setcontext.output_hash['myfield'] = ['my', 'values']
and you're set. See below for more examplescontext.skip!(msg)
An assertion that this record should be ignored. No more indexing steps will be called, no results will be sent to the writer, and adebug
-level log message will be written stating that the record was skipped.
A closure is a computer-science term that means "a piece of code that remembers all the variables that were in scope when it was created." In ruby, lambdas and blocks are closures. Method definitions are not, which most of us have run across much to our chagrin.
Within the context of traject
, this means you can define a variable
outside of a to_field
or each_record
block and it will be avaiable
inside those blocks. And you only have to define it once.
That's useful to do for any object that is even a bit expensive to create -- we can maximize the performance of our traject indexing by creating those objects once outside the block, instead of inside the block where it will be created once per-record (every time the block is executed):
Compare:
# Create the transformer for every single record
to_field 'normalized_title' do |rec, acc|
transformer = My::Custom::Format::Transformer.new # Oh no! I'm doing this for each of my 10M records!
acc << transformer.transform(rec['245'].value)
end
# Create the transformer exactly once
transformer = My::Custom::Format::Transformer.new # Ahhh. Do it once.
to_field 'normalized_title' do |rec, acc|
acc << transformer.transform(rec['245'].value)
end
Certain built-in traject calls have been optimized to be high performance
so it's safe to do them inside 'inner loop' blocks though.
That includes Traject::TranslationMap.new
and Traject::MarcExtractor.cached("xxx")
(note #cached rather than #new there)
In the ruby language, in addition to creating a code block as an argument
to a method with do |args| ... end
or {|arg| ... }, we can also create a code block to hold in a variable, with the
lambda` keyword:
always_output_foo = lambda do |record, accumulator|
accumulator << "FOO"
end
traject to_field
is written so, as a convenience, it can take a lambda expression
stored in a variable as an alternative to a block:
to_field("always_has_foo"), always_output_foo
Why is this a convenience? Well, ordinarily it's not something we need, but in fact it's what allows traject 'macros' as re-useable code templates.
A Traject macro is a way to automatically create indexing rules via re-usable "templates".
Traject macros are simply methods that return ruby lambda/proc objects, possibly creating them based on parameters passed in.
Here is in fact how the literal
function is implemented:
def literal(value)
return lambda do |record, accumulator, context|
# because a lambda is a closure, we can define it in terms
# of the 'value' from the scope it's defined in!
accumulator << value
end
end
to_field("something"), literal("something")
It's really as simple as that, that's all a Traject macro is. A function that takes parameters, and based on those parameters returns a lambda; the lambda is then passed to the to_field
indexing method, or similar methods.
How do you make these methods available to the indexer?
Define it in a module:
# in a file literal_macro.rb
module LiteralMacro
def literal(value)
return lambda do |record, accumulator, context|
# because a lambda is a closure, we can define it in terms
# of the 'value' from the scope it's defined in!
accumulator << value
end
end
end
And then use ordinary ruby require
and extend
to add it to the current Indexer file, by simply including this
in one of your config files:
require `literal_macro.rb`
extend LiteralMacro
to_field ...
That's it. You can use the traject command line -I
option to set the ruby load path, so your file will be findable via require
. Or you can distribute it in a gem, and use straight rubygems and the gem
command in your configuration file, or Bundler with traject command-line -g
option.
Traject macros (such as extract_marc
) create and return a lambda. If
you include a lambda and a block on a to_field
call, the latter
gets the accumulator as it was filled in by the former.
# Get the titles and lowercase them
to_field 'lc_title', extract_marc('245') do |rec, acc, context|
acc.map!{|title| title.downcase}
end
# Build my own lambda and use it
mylam = lambda {|rec, acc| acc << 'one'} # just add a constant
to_field('foo'), mylam do |rec, acc, context|
acc << 'two'
end #=> context.output_hash['foo'] == ['one', 'two']
# You might also want to do something like this
to_field('foo'), my_macro_that_doesn't_dedup_ do |rec, acc|
acc.uniq!
end
If you ask for the context argument, a Traject::Indexer::Context (rdoc), you have access to context.output_hash, with is the hash of transformed output that will be sent to Solr (or any other Writer)
You can look in there to see any already transformed output and use it as the source for new output. You can actually write to there manually, which can be useful to write routines that effect more than one output field at once.
Note: Make sure you always assign an array to, e.g., context.output_hash['foo']
, not a single value!
All the previous discussion was in terms of to_field
-- each_record
is a similar
routine, to define logic that is executed for each record, but isn't fixed to write
to a single output field.
So each_record
blocks have no accumulator
argument, instead they either take a single
record
argument; or both a record
and a context
.
each_record
can be used for logging or notifiying; computing intermediate
results; or writing to more than one field at once.
each_record do |record, context|
if is_it_bad?(record)
context.skip!("Skipping bad record")
else
context.clipboard[:expensive_result] = calculate_expensive_thing(record)
end
end
each_record do |record, context|
(one, two) = calculate_two_things_from(record)
context.output_hash["first_field"] ||= []
context.output_hash["first_field"] << one
context.output_hash["second_field"] ||= []
context.output_hash["second_field"] << one
end
traject doesn't come with any macros written for use with
each_record
, but they could be created if useful --
just methods that return lambda's taking the right
args for each_record
.
-
All your
to_field
andeach_record
steps are run in the order in which they were initially evaluated. That means that the order you call your config files can potentially make a difference if you're screwing around stuffing stuff into the context clipboard or whatnot. -
to_field
can be called multiple times on the same field name. If you call the same field name multiple times, all the values will be sent to the writer. -
Once you call
context.skip!(msg)
no more index steps will be run for that record. So if you have any cleanup code, you'll need to make sure to call it yourself. -
By default,
trajcet
indexing runs multi-threaded. In the current implementation, the indexing steps for one record are not split across threads, but different records can be processed simultaneously by more than one thread. That means you need to make sure your code is thread-safe (or always setprocessing_thread_pool
to 0).