Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8686813
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T22:57:35+00:00 2026-06-12T22:57:35+00:00

I have asked a very resemblant question in a previous thread Hadoop: How can

  • 0

I have asked a very resemblant question in a previous thread Hadoop: How can i have an array of doubles as a value in a key-value pair? .

My problem is that i want to pass a double array as value from map to reduce phase. The answer i got was to serialize, convert to Text, pass it to the reducer and deserialize. This is a fine solution but its like serializing and deserializing it twice.

ArrayWritable only accepts types that implement Writable like FloatWritable for example. So another solution is to convert my array of doubles to an array of DoubleWritables. But this requires some time too and Writables are a very expensive resource. Isn’t there a very simple solution like ArrayWritable array=new ArrayWritable(Double.class) ???

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T22:57:36+00:00Added an answer on June 12, 2026 at 10:57 pm

    Just implement your own Writable interface.

    For example,

    public class DoubleArrayWritable implements Writable {
        private double[] data;
    
        public DoubleArrayWritable() {
    
        }
    
        public DoubleArrayWritable(double[] data) {
            this.data = data;
        }
    
        public double[] getData() {
            return data;
        }
    
        public void setData(double[] data) {
            this.data = data;
        }
    
        public void write(DataOutput out) throws IOException {
            int length = 0;
            if(data != null) {
                length = data.length;
            }
    
            out.writeInt(length);
    
            for(int i = 0; i < length; i++) {
                out.writeDouble(data[i]);
            }
        }
    
        public void readFields(DataInput in) throws IOException {
            int length = in.readInt();
    
            data = new double[length];
    
            for(int i = 0; i < length; i++) {
                data[i] = in.readDouble();
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a very similar situation to the person who asked: Can I serve
I have asked this question before and the problem was half solved in the
I have asked a very similar question, but I ended up using images instead
Possible Duplicate: Notification when WPF UI closes I have asked a very similar question
I've asked very similar question before and should have mentioned more detailed. Last time
I have asked a similar question before, but didn't get very good results. I've
I have asked (and answered) a very similar question before. That question was able
I have just started C very recently and I have been asked to answer
I know that similar questions have been asked before, but I am very much
i have asked a question about manytomanyfield here which i solved but now a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.